.navbar {
    background-color: #0B4EA2 !important;
    padding: 15px 30px;
}

.navbar-brand img {
    width: 100px;
    height: auto;
}

.nav-link {
    color: white !important;
    margin: 0 15px;
    font-weight: 500;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
}

.hire-me-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin-left: 15px;
    text-decoration: none;
    /* Remove underline */
    display: inline-block;
    /* Better spacing */
}

.hire-me-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

/* Adjusting the nav items container */
.navbar-nav-right {
    margin-left: auto;
    /* Push to right on desktop */
}

/* Mobile styles */
@media (max-width: 991px) {
    .navbar-nav-right {
        margin-left: 0;
        /* Reset margin for mobile */
    }

    .nav-link {
        margin: 10px 0;
        /* Adjust vertical spacing on mobile */
    }

    .hire-me-btn {
        margin: 10px 0;
        /* Adjust spacing on mobile */
        margin-left: 0;
        /* Remove left margin on mobile */
        display: inline-block;
        /* Keep button inline */
    }
}





/* Section header underline */
.section-header-underline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
    width: 100%;
}

.section-header-underline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #0B4EA2;
}

.section-header-underline::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #0B4EA2;
    /* Blue color for the shorter, thicker line */
    top: 50%;
    transform: translateY(-50%);
}

/* White underline for section title */
.section-header-underline.white::before {
    background-color: #ffffff;
}

.section-header-underline.white::after {
    background-color: #ffffff;
}





/* Social Media Section */
.social-section {
    padding: 60px 0;
    text-align: center;
}

.social-title {
    text-align: center;
    color: #0B4EA2;
    margin-bottom: 40px;
    font-size: 32px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.social-icon {
    color: #0B4EA2;
    font-size: 24px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Footer Styles */
.footer {
    background-color: #0B4EA2;
    padding: 40px 0 20px;
    color: white;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 80px;
    height: auto;
}

.footer-nav {
    text-align: center;
    margin-bottom: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #E8F0F9;
    color: #0B4EA2;
}


/* Homepage style  */
 /* Hero Section Styles */
 .hero-section {
    background-color: white;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-title .first-name {
    color: #0B4EA2;
    font-weight: bold;
}


.hero-title {
    color: #000;
    font-weight: normal;
}

.last-name {
    color: #106ad8;
}

.hero-description {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    max-width: 100%;
    height: auto;
}
.hero-image img {
    float: right;
}

.read-more-btn {
    background-color: #0B4EA2;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #093d82;
    color: white;
}

.blue-bar {
    width: 80px;
    height: 4px;
    background-color: #0B4EA2;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-image-container {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
}




/* Role Cards Section Styles */
.roles-section {
    padding: 60px 0;
    background-color: white;
}

.roles-title {
    text-align: center;
    color: #0B4EA2;
    margin-bottom: 40px;
    font-size: 32px;
}

.role-card {
    height: 100%;
    padding: 25px;
    text-align: center;
}

.role-card .header {
    background-color: #0B4EA2;
    color: white;
    padding: 15px;
    text-align: center;
    margin: -25px -25px 20px -25px;
}

.role-card.designer .header {
    background-color: #E8F0F9;
    color: #093d82;
}

.role-card.scientist .header {
    background-color: hsl(213, 87%, 34%);
}

.role-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.role-card.developer {
    background-color: #E8F0F9;
}

.role-card.designer {
    background-color: #0B4EA2;
    color: white;
}

.role-card.scientist {
    background-color: #E8F0F9;
}

.role-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 15px;
}

.read-more-link {
    display: inline-block;
    padding: 8px 25px;
    text-decoration: none;
    font-weight: 500;
    background-color: #0B4EA2;
    color: white;
}

.role-card.developer .read-more-link,
.role-card.scientist .read-more-link {
    background-color: #0B4EA2;
    color: white;
}

.role-card.designer .read-more-link {
    background-color: #E8F0F9;
    color: #0B4EA2;
}

.read-more-link:hover {
    opacity: 0.9;
    color: white;
}

.role-card.designer .read-more-link:hover {
    color: #0B4EA2;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .roles-section {
        padding: 40px 0;
    }

    .role-card {
        margin-bottom: 30px;
    }
}



.skills-section {
    padding: 60px 0;
}

.skills-title {
    text-align: center;
    color: #0B4EA2;
    margin-bottom: 40px;
    font-size: 32px;
}

/* Accordion Custom Styles */
.skills-accordion {
    margin-top: 40px;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    position: relative;
}

/* Vertical line styling */
.accordion-item::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 30px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: #0B4EA2;
}

.accordion-item:last-child::before {
    display: none;
}

/* Move plus/minus to left and style it */
.accordion-button {
    padding-left: 20px !important;
    position: relative;
}

.accordion-button::after {
    position: absolute;
    left: 20px;
    color: white;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e") !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3e%3c/svg%3e") !important;
}

.accordion-button {
    background-color: #0B4EA2 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px !important;
    box-shadow: none !important;
    width: auto;
    margin-left: 20px;
}

.accordion-body {
    padding: 20px 20px 0 50px;
    color: #0B4EA2;
    font-weight: 500;
}

/* Dot styling */
.accordion-button::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 14px;
    height: 14px;
    background-color: #0B4EA2;
    border-radius: 50%;
}

/* Updated circle with plus/minus */
.accordion-button::before {
    content: '+';
    /* Default plus sign */
    position: absolute;
    left: -20px;
    width: 14px;
    height: 14px;
    background-color: #0B4EA2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.accordion-button:not(.collapsed)::before {
    content: '-';
    /* Minus sign when expanded */
}

/* Remove default plus/minus */
.accordion-button::after {
    display: none !important;
}

/* Add spacing between columns */
.skills-column {
    padding: 0 20px;
}

.skill-content {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: normal;
}


.testimonials-section {
    padding: 60px 0;
}

.testimonials-title {
    text-align: center;
    color: #0B4EA2;
    margin-bottom: 40px;
    font-size: 32px;
}

.testimonial-carousel {
    padding: 20px 0;
}

.testimonial-item {
    background-color: #E8F0F9;
    /* Light blue background */
    padding: 30px;
    border-radius: 5px;
    margin: 10px;
    min-height: 200px;
}

.testimonial-item.active {
    background-color: #0B4EA2;
    /* Dark blue for active */
    color: white;
}

.client-name {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Custom carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #0B4EA2;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-inner {
    padding: 0 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .carousel-inner {
        padding: 0 40px;
    }
}

/* Updated CSS */
.testimonial-carousel {
    padding: 20px 0;
    position: relative;
}

.testimonial-item {
    background-color: #E8F0F9;
    padding: 30px;
    border-radius: 5px;
    margin: 10px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-item {
        margin: 10px 40px;
        /* Increased side margins on mobile */
    }

    .carousel-control-prev {
        left: -10px;
    }

    .carousel-control-next {
        right: -10px;
    }

    .carousel-inner {
        padding: 0 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        /* Slightly smaller controls on mobile */
        height: 30px;
    }
}

/* Medium screens (tablets) */
@media (min-width: 769px) and (max-width: 991px) {
    .carousel-inner {
        padding: 0 40px;
    }
}

/* Large screens */
@media (min-width: 992px) {
    .carousel-inner {
        padding: 0 60px;
    }
}


.hire-section {
    background-color: #0B4EA2;
    padding: 60px 0;
    color: white;
}

.hire-title {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    font-size: 32px;
}

.hire-content {
    max-width: 900px;
    margin: 0 auto;
}

.hire-description {
    color: white;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Form Styles */
.hire-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    border-radius: 0;
    padding: 10px 0;
    color: white;
}

.form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: white;
    color: white;
}

/* Custom placeholder color */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Send Button */
.send-btn {
    background-color: white;
    color: #0B4EA2;
    border: none;
    padding: 10px 40px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.send-btn:hover {
    background-color: #f0f0f0;
}

.send-btn .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.send-btn:hover .arrow {
    transform: translateX(5px);
}


/* About us  */
.about-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.about-section .tab-navigation {
    width: 20%;
    background-color: #7298CF;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.about-section .tab {
    margin-bottom: 20px;
    background-color: #0257A1;
}

.about-section .tab a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 10px 15px;
    border-left: 4px solid transparent;
    transition: border-left 0.3s ease;
    background-color: #0257A1;
}

.about-section .tab a.active, .tab a:hover {
    background-color: #0257A1;
    border-left: 6px solid #ffffff;
}

.about-section .tab-content {
    width: 80%;
    padding: 30px;
}

.about-section .tab-content div {
    display: none;
}

.tab-content div:target {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 0 10px;
    }

    .about-section .tab-navigation {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        padding: 10px 0;
    }

    .about-section .tab a {
        font-size: 16px;
        padding: 10px;
        border-left: none;
        border-bottom: 2px solid transparent;
        text-align: center;
    }

    .about-section .tab a.active, .tab a:hover {
        border-left: none;
        border-bottom: 2px solid #007bff;
        background-color: transparent;
    }

    .about-section .tab-content {
        width: 100%;
        padding: 20px;
    }
}

/* calendly  */
.calendly-iframe-container {
    margin: 0 auto;
    overflow: hidden;
}


/* # Resume */
/* Header & Common Styles */
.top-bar {
    width: 80px;
    height: 4px;
    background-color: #0B4EA2;
    margin-bottom: 30px;
}

.title-primary {
    color: #0B4EA2;
    font-weight: bold;
    font-size: 42px;
}

.title-secondary {
    color: #106ad8;
    font-weight: normal;
    font-size: 42px;
}

/* Experience Section */
.experience-header {
    padding: 60px 0 40px;
}

.section-title {
    margin-bottom: 30px;
}

.experience-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    /* max-width: 800px; */
    padding-left: 50px;
}

/* Achievement Section */
.achievements-section {
    padding: 40px 0;
}

.achievement-accordion {
    margin: 0 auto;
}

.achievement-item {
    margin-bottom: 30px;
    position: relative;
}

.achievement-item::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E0E0E0;
}

.achievement-item::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0B4EA2;
    z-index: 1;
    opacity: 0;
}

.achievement-item.active::before {
    opacity: 1;
}

.achievement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.achievement-title {
    color: #0B4EA2;
    font-size: 24px;
    margin: 0;
}

.achievement-date {
    color: #0B4EA2;
    font-weight: 500;
    margin-top: 5px;
}

.achievement-arrow {
    color: #0B4EA2;
    font-size: 24px;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.achievement-item.active .achievement-arrow {
    transform: rotate(45deg);
}

.achievement-content {
    background-color: #E8F0F9;
    padding: 30px;
    margin-top: 10px;
    display: none;
}

.achievement-item.active .achievement-content {
    display: block;
}

.achievement-description {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Education Section */
.education-section {
    padding: 60px 0;
}

.education-title {
    color: #0B4EA2;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 40px;
}

.education-card {
    margin-bottom: 30px;
    height: 100%;
}

.education-header {
    background-color: #0B4EA2;
    color: white;
    padding: 15px 20px;
}

.education-body {
    background-color: #E8F0F9;
    padding: 20px;
}

.university-name {
    color: #0B4EA2;
    font-size: 18px;
    margin-bottom: 15px;
}

.education-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* Skills Slider Section */
.skills-slider-section {
    background-color: #0B4EA2;
    padding: 30px 0;
    position: relative;
}

.skills-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    row-gap: 20px;
}

.skill-item {
    color: white;
    text-align: center;
    padding: 0 40px;
    position: relative;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #0B4EA2;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border: 2px solid white;
    position: absolute;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Responsive Styles */
@media (min-width: 992px) {
    .carousel-control-prev {
        left: -50px;
    }

    .carousel-control-next {
        right: -50px;
    }

    .skills-group {
        padding: 0;
    }

    .skill-item:not(:last-child)::after {
        content: '—';
        position: absolute;
        right: -10px;
        color: white;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .carousel-control-prev {
        left: -20px;
    }

    .carousel-control-next {
        right: -20px;
    }

    .skills-group {
        padding: 0 30px;
    }

    .skill-item {
        padding: 0 30px;
    }

    .skill-item:nth-child(-n+2):not(:last-child)::after {
        content: '—';
        position: absolute;
        right: -10px;
        color: white;
    }
}

@media (max-width: 767px) {

    .title-primary,
    .title-secondary {
        font-size: 32px;
    }

    .experience-header {
        padding: 40px 0 30px;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .skills-group {
        padding: 0 20px;
    }

    .skill-item {
        padding: 0 20px;
        width: 50%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .skill-item:nth-child(odd):not(:last-child)::after {
        content: '—';
        position: absolute;
        right: -10px;
        color: white;
    }
}

a {
    color: #0B4EA2;
}


/* Contact */
.contact-header {
    padding: 60px 0 40px;
}

.top-bar {
    width: 80px;
    height: 4px;
    background-color: #0B4EA2;
    margin-bottom: 30px;
}

.title-primary {
    color: #0B4EA2;
    font-weight: bold;
    font-size: 42px;
}

.title-secondary {
    color: #106ad8;
    font-weight: normal;
    font-size: 42px;
}

.contact-description {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    max-width: 800px;
    margin-bottom: 60px;
}

.contact-content {
    padding: 0 0 80px;
}

.contact-info {
    background-color: #0B4EA2;
    padding: 40px;
    border-radius: 10px;
    color: white;
    height: 100%;
}

.info-title,
.form-title {
    font-size: 24px;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    opacity: 0.8;
}

.contact-form {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}

.contact-form .form-control{
    color: black;
}
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.send-btn {
    background-color: #0B4EA2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.send-btn:hover {
    background-color: #093d82;
}

.send-btn .arrow {
    transition: transform 0.3s;
}

.send-btn:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 30px;
    }

    .title-primary,
    .title-secondary {
        font-size: 32px;
    }
}

